Main Menu

Search

Showing posts with label cri-o troubleshooting. Show all posts
Showing posts with label cri-o troubleshooting. Show all posts

CRIO: How to Specify Registry Credentials (Login Username and Password) With Crictl Command?

Following command can be used to Specify Registry Credentials (Login Username and Password) With crictl Command.

Replace private registry hostname and port number in below command.

crictl pull --creds "username:password" private-registry:5000/nginx:latest


Keywords:

crio cri-o crictl command commands credentials credential username password user authenticate authenticating push pushing pull pulling


PODMAN / CRIO: How To Manually Test Pulling Container Images From Oracle Container Registry (OCR) Using Podman & CRIO?

We can manually pull nginx container image from Oracle container registry (OCR) from podman or CRIO to test if they are installed correctly and if the images are getting pulled without issues.

Following commands can be used.

Podman

podman pull container-registry.oracle.com/olcne/nginx:1.17.7

CRIO

crictl pull container-registry.oracle.com/olcne/nginx:1.17.7

Keywords:

pulling pull container containers image images container-registry.oracle.com ocr registries issues problems test check testing checking

CRI-O: Command To View And Tail CRIO Container Logs

CRI-O: Command To View And Tail CRIO Container Logs

Below command can be used.


crictl logs -f <container-name>